home *** CD-ROM | disk | FTP | other *** search
/ Multimedia Joker 5 & 6 / Multimedia Joker 1996-05 & 06 (1996)(Joker Verlag)(DE)[Amiga-Mac-PC].iso / mac / AMIGA / CHEATS / GL_CHEAT next >
Text File  |  1996-01-24  |  1KB  |  72 lines

  1. ;
  2. ;Script zur Steuerung des Levelanwahl Trainers
  3. ;
  4. ;Dieses Script "GLOOM-CHEAT" nennen
  5. ;
  6.  
  7. cd MISC
  8. SET Welt `REQUESTCHOICE "GloomDeluxe Weltwahl" "Welche Welt willst Du spielen ?" Spacehulk GothicTomb Hell "zuletzt benutzte"`
  9.  
  10. if $Welt NOT EQ 0
  11.  SET Level `REQUESTCHOICE "GloomDeluxe Levelwahl" "Welchen Level willst Du spielen ?" 1 2 3 4 5 6 7 Alle`
  12.  
  13.  if $Level EQ 0
  14.   copy Script$Welt to Script
  15.   Skip End
  16.  endif
  17.  
  18.  echo ";GloomDeluxe Level-Anwahl Trainer" > Script
  19.  
  20.  if $Welt EQ 1
  21.   echo pict_spacehulk >> Script
  22.   echo tile_1 >> Script 
  23.  endif
  24.  
  25.  if $Welt EQ 2
  26.   echo pict_gothic >> Script
  27.   echo tile_2 >> Script 
  28.  endif
  29.  
  30.  if $Welt EQ 3
  31.   echo pict_hell >> Script
  32.   echo tile_3 >> Script 
  33.  endif
  34.  
  35.  echo draw_ >> Script
  36.  echo show_ >> Script
  37.  echo "text_Gloom Deluxe Level Trainer läuft" >> Script
  38.  echo wait_ >> Script
  39.  echo dark_ >> Script
  40.  if $Welt EQ 1
  41.   echo play_map1_$Level >> Script
  42.  endif
  43.  if $Welt EQ 2
  44.   echo play_map3_$Level >> Script
  45.  endif
  46.  if $Welt EQ 3
  47.   echo play_map4_$Level >> Script
  48.  endif
  49.  
  50.  echo pict_theend >> Script
  51.  echo draw_ >> Script
  52.  echo show_ >> Script
  53.  echo "text_Du hast den ausgewählten Level geschafft !" >> Script
  54.  echo wait_ >> Script
  55.  echo done_ >> Script
  56. endif
  57.  
  58. Lab End
  59. cd /
  60.  
  61. SET Engine `REQUESTCHOICE "GloomDeluxe Modus Auswahl" "Welchen Grafikmodus willst Du ?" Alt Deluxe Exit`
  62. if $Engine EQ 1
  63.  gloom
  64. endif
  65. if $Engine EQ 2
  66.  gloom2
  67. endif
  68.  
  69. ;End of Start
  70.  
  71.  
  72.